home *** CD-ROM | disk | FTP | other *** search
/ Electronics Boutique Catalog 1996 Spring / 1996 Electronics Boutique Spring CD-ROM (USA).bin / eb / demos / movies.dir / 00018_movie sprite.ls < prev    next >
Encoding:
Text File  |  1995-12-13  |  466 b   |  31 lines

  1. global gRetDown, gRetUp
  2.  
  3. on startMovie
  4. end
  5.  
  6. on buttonRoll
  7.   if rollOver(6) then
  8.     go(marker(0) + 2)
  9.   else
  10.     go(marker(0) + 1)
  11.   end if
  12. end
  13.  
  14. on clearTheMovieAndGo
  15.   set the movieRate of sprite 2 to 0
  16.   if the frame <= (marker(0) + 2) then
  17.     go("end")
  18.   else
  19.     go(marker("end") + 1)
  20.   end if
  21. end
  22.  
  23. on blackFrame
  24.   repeat with x = 1 to 48
  25.     set the locV of sprite x to -500
  26.   end repeat
  27.   puppetTransition(50, 0, 12)
  28.   updateStage()
  29.   puppetTransition(0)
  30. end
  31.